[index]

Repeat While

Syntax

repeat while <condition> end repeat

Description

The repeat while control statement repeats a part of a script while a specific condition is true. The condition must supply a value of true or false.

Notes

Examples

on openField put 0 into field "total" repeat while the mouse is down add 1 to field "total" end repeat
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.